home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo Beginning installation. Please wait . . .
- :disk1
- echo Make certain DISK1 is in Drive A.
- pause
- if not exist a:zephyr4.001 goto disk1
- echo Copying DISK1 to default drive . . .
- copy a:zephyr4.001
- :disk2
- echo Please insert Disk 2 in Drive A.
- pause
- if not exist a:zephyr4.002 goto disk2
- echo Copying DISK2 to default drive . . .
- copy a:zephyr4.002
- :disk3
- echo Please insert Disk 3 in Drive A.
- pause
- if not exist a:zephyr4.003 goto disk3
- echo Copying DISK3 to default drive . . .
- copy a:zephyr4.003
- cls
- echo Please remove DISK3 and store in a safe place.
- echo Reconstructing Zephyr archive for installation . . .
- copy /b zephyr4.002 + zephyr4.003 + zephyr4.001 zephyr4.exe
- del zephyr4.0*
- zephyr4
- del zephyr4.exe
- echo Installation completed.
- echo Type the following to print ALL documentation: COPY *.DOC PRN
- echo To run Zephyr, type ZEPHYR
- echo You may ignore the error message, if any, appearing on the next line.
- del install2.bat > nul
-
-